home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / LIBIP / LICENSE.C < prev    next >
C/C++ Source or Header  |  1999-09-11  |  1KB  |  43 lines

  1. /* 
  2.  * license.c
  3.  * 
  4.  * Practical Algorithms for Image Analysis
  5.  * 
  6.  * Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
  7.  */
  8.  
  9. #include <stdio.h>
  10. #define SOS_LIC "\n\
  11. This program is free software; you can redistribute it and/or\n\
  12. modify it under the terms of the GNU General Public License\n\
  13. as published by the Free Software Foundation; either version 2\n\
  14. of the License, or (at your option) any later version.\n\
  15. \n\
  16. This program is distributed in the hope that it will be useful,\n\
  17. but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
  18. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\
  19. GNU General Public License for more details.\n\
  20. \n\
  21. You should have received a copy of the GNU General Public License\n\
  22. along with this program; if not, write to the Free Software\n\
  23. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\n"
  24.  
  25. #define BCD_LIC "\
  26. No end-user licensing for this program is needed.  This program\n\
  27. is used with permission from I. Cox.  Please reference:\n\
  28. R. A. Boie, I. Cox, Proc. IEEE 1st Int. Conf. Computer Vision,\n\
  29. London, 1987, pp. 450-456.\n"
  30.  
  31.  
  32. void
  33. print_sos_lic ()
  34. {
  35.   printf (SOS_LIC);
  36. }
  37.  
  38. void
  39. print_bcd_lic ()
  40. {
  41.   printf (BCD_LIC);
  42. }
  43.